Autogenerated HTML docs for v1.5.6.1-156-ge903b
diff --git a/git-rev-parse.txt b/git-rev-parse.txt index 59e95ad..6825ae2 100644 --- a/git-rev-parse.txt +++ b/git-rev-parse.txt
@@ -8,15 +8,15 @@ SYNOPSIS -------- -'git-rev-parse' [ --option ] <args>... +'git rev-parse' [ --option ] <args>... DESCRIPTION ----------- Many git porcelainish commands take mixture of flags (i.e. parameters that begin with a dash '-') and parameters -meant for underlying `git-rev-list` command they use internally -and flags and parameters for other commands they use as the +meant for the underlying `git-rev-list` command they use internally +and flags and parameters for the other commands they use downstream of `git-rev-list`. This command is used to distinguish between them. @@ -128,13 +128,13 @@ --since=datestring:: --after=datestring:: - Parses the date string, and outputs corresponding - --max-age= parameter for git-rev-list command. + Parse the date string, and output the corresponding + --max-age= parameter for `git-rev-list`. --until=datestring:: --before=datestring:: - Parses the date string, and outputs corresponding - --min-age= parameter for git-rev-list command. + Parse the date string, and output the corresponding + --min-age= parameter for `git-rev-list`. <args>...:: Flags and parameters to be parsed. @@ -296,7 +296,7 @@ A similar notation "`r1\...r2`" is called symmetric difference of `r1` and `r2` and is defined as -"`r1 r2 --not $(git-merge-base --all r1 r2)`". +"`r1 r2 --not $(git merge-base --all r1 r2)`". It is the set of commits that are reachable from either one of `r1` or `r2` but not from both. @@ -384,7 +384,7 @@ An option group Header C? option C with an optional argument" -eval `echo "$OPTS_SPEC" | git-rev-parse --parseopt -- "$@" || echo exit $?` +eval `echo "$OPTS_SPEC" | git rev-parse --parseopt -- "$@" || echo exit $?` ------------ EXAMPLES